home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 April / Designer's Club 1998 April.iso / pc / Ideasrc / BITES.DIR / 00074_Script_last frame < prev   
Text File  |  1998-03-13  |  478b  |  27 lines

  1. on exitFrame
  2.   
  3.   if soundbusy(1) then 
  4.     go the frame
  5.   else
  6.     startTimer
  7.     repeat while the timer < 60
  8.       nothing
  9.     end repeat
  10.     go movie "main"
  11.   end if
  12.   
  13.   repeat with n=13 to 17
  14.     if rollover(n) then
  15.       set the visible of sprite n to false
  16.       updatestage
  17.     end if
  18.   end repeat
  19.   
  20.   repeat with n=13 to 17
  21.     if not rollover(n) then
  22.       set the visible of sprite n to true
  23.       updatestage
  24.     end if
  25.   end repeat
  26.   
  27. end